home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / telecom / tm421_4.zip / WILDCAT.SCR < prev    next >
Text File  |  1996-02-06  |  914b  |  42 lines

  1. ;
  2. ; WILDCAT.SCR is a log on script file for Wildcat BBS
  3. ;
  4.  
  5. string FirstName, LastName
  6. integer SkipToMainMenu
  7.  
  8. FirstName = "first"          ; put your name here
  9. LastName = "last"
  10.  
  11. SkipToMainMenu = 1           ; bypass all the bulletin, 0 for manual operation
  12.  
  13. Set AutoStop,On              ; stop script if carrier is lost
  14. Waitfor 0                    ; unlimited waiting time
  15.  
  16. if SkipToMainMenu            ; bypass front-end messager
  17.    When "escape","^[^["
  18.    When "<esc> twice","^[^["
  19.    When "esc key","^[^["
  20.    When "[N]onStop:","s"     ; skip all the bulletin
  21.    When "press return","^M"
  22.    When "press [Enter]","^M"
  23. endif
  24.  
  25. Waitfor "What is your First Name"
  26. Put FirstName
  27.  
  28. Waitfor "What is your Last Name"
  29. Put LastName
  30.  
  31. Waitfor "Password: "
  32. Put "^&"
  33.  
  34. if SkipToMainMenu
  35.    WhenIdle 5,"^M"
  36.    Waitfor "bulletin menu [y/N]? ",120
  37.    if found
  38.       Put "n"
  39.    endif
  40. endif
  41.  
  42.